home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Activation / ApplicationFocus.h < prev    next >
Text File  |  2000-06-23  |  335b  |  25 lines

  1. // ApplicationFocus.h
  2.  
  3. #ifndef ApplicationFocus_h
  4. #define ApplicationFocus_h
  5.  
  6. #ifndef Focus_h
  7. #include "Focus.h"
  8. #endif
  9.  
  10. class ApplicationFocus: public Focus
  11.   {
  12.     private:
  13.         ApplicationFocus()        {}
  14.         
  15.     public:
  16.         static ApplicationFocus& The();
  17.  
  18.         void Resume();
  19.         void Suspend();
  20.         
  21.         void SynchronizeWithProcessManager();
  22.   };
  23.  
  24. #endif
  25.